form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 50%;
  min-width: 300px;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  background-color: #1e1e1e;
  box-shadow: rgba(0, 255, 136, 0.3) 0px 4px 12px;
  border: 1px solid rgba(0, 255, 136, 0.3);
}
h1 {
  margin-top: 0px;
  text-align: center;
  color: #00ff88;
  text-decoration: underline;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
button {
  transition: all 0.3s ease;
  font-size: 16px;
  cursor: pointer;
  font-size: 16px;
  margin: 5px;
  width: 60%;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50px;
  padding: 14px 28px;
  background: linear-gradient(145deg, #00ff88, #32ffa5);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
  color: #121212;
}

button:hover {
  background-color: #32ffa5;
  color: #121212;
  transform: scale(1.05);
}
input {
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  width: 90%;
  border-radius: 5px;
  background-color: #2a2a2a;
  color: #f0f0f0;
  border: 1px solid rgba(0, 255, 136, 0.3);
  box-shadow: rgba(0, 255, 136, 0.2) 0px 2px 8px;
}
p.now {
  font-size: 20px;
  margin: 0;
  padding: 0;
  color: #f0f0f0;
}
body {
  background-color: #121212;
  color: #f0f0f0;
  font-family: "Poppins", sans-serif;
}
.bodyContainer {
  background: #1e1e1e;
  box-shadow: inset 8px 8px 16px #101010, inset -8px -8px 16px #2c2c2c;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 70%;
  min-width: 450px;
  margin: 3% auto;
  padding: 20px;
  border-radius: 10px;
  color: #f0f0f0;
}
.weatherNow {
  margin: auto;
  padding-bottom: 10px;
  margin-bottom: 10px;
  background-color: #2a2a2a;
  border-top: 1px solid #00ff88;
  border-bottom: 1px solid #00ff88;
  box-shadow: rgba(0, 255, 136, 0.2) 0px 2px 8px;
  border-radius: 10px;
  width: 78%;
}
.forecast {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 90%;
  margin: auto;
}
.dateContainer {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: auto;
  font-size: 20px;
}
#nowContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 74%;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 20px;
  padding-left: 20px;
  max-height: 100px;
}
#currentHumidity,
#currentConditions,
#currentWind,
#currentPressure {
  font-size: 20px;
  margin: 0;
  color: #f0f0f0;
}

#currentTemp {
  font-size: 34px;
  margin: 0;
  padding: 0;
  color: #00ff88;
  font-weight: bold;
}

img {
  padding: 0;
  max-width: 50px;
  max-height: 50px;
  margin: 0;
}

li.day {
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  background-color: #2a2a2a;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: rgba(0, 255, 136, 0.2) 0px 2px 8px;
  color: #cccccc;
  font-size: 14px;
}

.weatherNow,
li.day {
  transition: background-color 0.3s, transform 0.2s;
}

li.day:hover {
  background-color: #333;
  color: #f0f0f0;
  transform: scale(1.02);
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer {
  font-family: "Courier New", Courier, monospace;
}
a {
  color: #00ff88;
  text-decoration: none;
}
a:hover {
  color: #32ffa5;
  text-decoration: underline;
}
